Uses of Interface
negotiator.utility.Evaluator

Packages that use Evaluator
agents.anac.y2010.AgentFSEGA   
agents.anac.y2010.AgentSmith   
agents.anac.y2010.Southampton.utils   
agents.bayesianopponentmodel   
negotiator.boaframework.offeringstrategy.anac2010.IAMhaggler2010   
negotiator.boaframework.opponentmodel   
negotiator.utility   
 

Uses of Evaluator in agents.anac.y2010.AgentFSEGA
 

Methods in agents.anac.y2010.AgentFSEGA that return Evaluator
 Evaluator EvaluatorHypothesis.getEvaluator()
           
 

Constructors in agents.anac.y2010.AgentFSEGA with parameters of type Evaluator
EvaluatorHypothesis(Evaluator pEval, java.lang.String pDescription)
           
 

Uses of Evaluator in agents.anac.y2010.AgentSmith
 

Methods in agents.anac.y2010.AgentSmith that return Evaluator
 Evaluator PreferenceProfileManager.getMyEvaluator(int issueID)
           
 

Uses of Evaluator in agents.anac.y2010.Southampton.utils
 

Methods in agents.anac.y2010.Southampton.utils that return Evaluator
 Evaluator EvaluatorHypothesis.getEvaluator()
           
 

Methods in agents.anac.y2010.Southampton.utils with parameters of type Evaluator
 double OpponentModel.getExtremeEvaluation(Evaluator evaluator, OpponentModel.Extreme extreme)
           
 

Constructors in agents.anac.y2010.Southampton.utils with parameters of type Evaluator
EvaluatorHypothesis(Evaluator evaluator)
           
 

Uses of Evaluator in agents.bayesianopponentmodel
 

Methods in agents.bayesianopponentmodel that return Evaluator
 Evaluator EvaluatorHypothesis.getEvaluator()
           
 

Constructors in agents.bayesianopponentmodel with parameters of type Evaluator
EvaluatorHypothesis(Evaluator pEval)
           
 

Uses of Evaluator in negotiator.boaframework.offeringstrategy.anac2010.IAMhaggler2010
 

Methods in negotiator.boaframework.offeringstrategy.anac2010.IAMhaggler2010 that return Evaluator
 Evaluator EvaluatorHypothesis.getEvaluator()
           
 

Methods in negotiator.boaframework.offeringstrategy.anac2010.IAMhaggler2010 with parameters of type Evaluator
 double OpponentModel.getExtremeEvaluation(Evaluator evaluator, OpponentModel.Extreme extreme)
           
 

Constructors in negotiator.boaframework.offeringstrategy.anac2010.IAMhaggler2010 with parameters of type Evaluator
EvaluatorHypothesis(Evaluator evaluator)
           
 

Uses of Evaluator in negotiator.boaframework.opponentmodel
 

Methods in negotiator.boaframework.opponentmodel with parameters of type Evaluator
 double IAMhagglerBayesianModel.getExtremeEvaluation(Evaluator evaluator, IAMhagglerBayesianModel.Extreme extreme)
           
 double PerfectIAMhagglerBayesianModel.getExtremeEvaluation(Evaluator evaluator, PerfectIAMhagglerBayesianModel.Extreme extreme)
           
 

Uses of Evaluator in negotiator.utility
 

Classes in negotiator.utility that implement Evaluator
 class EvaluatorDiscrete
          This class is used to convert the value of a discrete issue to a utility.
 class EvaluatorInteger
          This class is used to convert the value of an integer issue to a utility.
 class EvaluatorObjective
          Evaulator for an objective.
 class EvaluatorReal
          An evaluator for real-type issues.
 

Methods in negotiator.utility that return Evaluator
 Evaluator UtilitySpace.addEvaluator(Objective obj)
          Adds an evaluator to an objective or issue
 Evaluator UtilitySpace.addEvaluator(Objective obj, Evaluator ev)
          Sets an pair.
 Evaluator Evaluator.clone()
           
 Evaluator UtilitySpace.DefaultEvaluator(Objective obj)
          create a default evaluator for a given Objective.
 Evaluator UtilitySpace.getEvaluator(int index)
           
 

Methods in negotiator.utility that return types with arguments of type Evaluator
 java.util.Set<java.util.Map.Entry<Objective,Evaluator>> UtilitySpace.getEvaluators()
           
 java.util.Set<java.util.Map.Entry<Objective,Evaluator>> UtilitySpace.normalizeChildren(Objective obj)
          Normalizes the weights of objectives of the given objective so that they sum up to one.
 

Methods in negotiator.utility with parameters of type Evaluator
 Evaluator UtilitySpace.addEvaluator(Objective obj, Evaluator ev)
          Sets an pair.
 

Constructor parameters in negotiator.utility with type arguments of type Evaluator
UtilitySpace(Domain domain, java.util.Map<Objective,Evaluator> fEvaluators)